home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 1191 / 1191.xpi / chrome / reminderfox.jar / content / reminderfox / alerts / reminderalert.xul < prev   
Extensible Markup Language  |  2008-10-21  |  2KB  |  49 lines

  1. <?xml-stylesheet href="chrome://global/skin/alerts/alert.css" type="text/css"?>
  2. <?xml-stylesheet href="chrome://reminderfox/skin/reminder.css"  type="text/css"?>
  3.  
  4. <!-- DTD Files -->
  5. <!DOCTYPE window 
  6. [
  7.     <!ENTITY % dtd2 SYSTEM "chrome://reminderfox/locale/reminderfox.dtd" > %dtd2;
  8. ]>
  9.  
  10. <window id="alertNotification"
  11.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  12.         windowtype="alert:alert"
  13.         xmlns:xhtml2="http://www.w3.org/TR/xhtml2"
  14.         xmlns:wairole="http://www.w3.org/2005/01/wai-rdf/GUIRoleTaxonomy#"
  15.         xhtml2:role="wairole:alert"
  16.         align="start"
  17.         onload="onAlertLoad()">
  18.   
  19.       <stringbundleset id="stringbundleset">
  20.         <stringbundle id="reminderFox-bundle" src="chrome://reminderfox/locale/reminderfox.properties"/>
  21.       </stringbundleset>
  22.             <script type="application/x-javascript"  src="chrome://reminderfox/content/network/upload.js" />
  23.             <script type="application/x-javascript"  src="chrome://reminderfox/content/network/download.js" />
  24.       <script type="application/x-javascript"  src="chrome://reminderfox/content/network/networkService.js" />
  25.           <script type="application/x-javascript"  src="chrome://reminderfox/content/network/passwordManagerUtils.js" />
  26.  
  27.     <script type="application/x-javascript"  src="chrome://reminderfox/content/reminderFox.js" />
  28.     <script type="application/x-javascript" src="chrome://reminderfox/content/reminderFoxCore.js" />
  29.     <script type="application/x-javascript" src="chrome://reminderfox/content/alerts/reminderalert.js" />
  30.   
  31.   <hbox id="alertBox" class="alertBox"  onclick="onAlertClick();">
  32.         <vbox>
  33.         <image src='chrome://reminderfox/skin/images/fox.png'/>
  34.         </vbox>
  35.         <vbox id="tooltipChildrenReminders2">
  36.             <description id="todayRemindersDescription2" style="font-weight:bold">&rf.main.tooltip.todaysreminders.label;</description> 
  37.             <vbox id="todaysRemindersBox2" >
  38.             </vbox>
  39.             <spacer id="reminderSpacer" height="4px"/>
  40.             <description value="&rf.main.tooltip.upcomingreminders.label;" id="upcomingRemindersDescription2" style="font-weight:bold"/>
  41.             <vbox id="upcomingRemindersBox2">
  42.             </vbox>
  43.         </vbox>    
  44.   </hbox>
  45.  
  46.   <!-- This method is called inline because we want to make sure we establish the width
  47.        and height of the alert before we fire the onload handler. -->
  48.   <script type="application/x-javascript">prefillAlertInfo();</script>
  49. </window>